home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 1999 July: Mac OS SDK / Dev.CD Jul 99 SDK1.toast / Development Kits / Mac OS / Interfaces&Libraries / Universal / Interfaces / AIncludes / Windows.a < prev    next >
Encoding:
Text File  |  1998-08-17  |  1.1 KB  |  46 lines  |  [TEXT/MPS ]

  1. ;
  2. ;    File:        Windows.a
  3. ;
  4. ;    Contains:    Window Manager Interfaces.
  5. ;
  6. ;    Version:    Technology:    System 7.5
  7. ;                Release:    Universal Interfaces 3.2
  8. ;
  9. ;    Copyright:    © 1984-1998 by Apple Computer, Inc., all rights reserved
  10. ;
  11. ;    Bugs?:        For bug reports, consult the following page on
  12. ;                the World Wide Web:
  13. ;
  14. ;                    http://developer.apple.com/bugreporter/
  15. ;
  16. ;
  17. ;    NOTE
  18. ;    
  19. ;    The file Windows.h has been renamed to "MacWindows.h" to prevent a collision
  20. ;    with the Microsoft Windows(tm) header file "Windows.h".  MacOS only developers may 
  21. ;    continue to use #include <Windows.h>.  Developers doing cross-platform work where 
  22. ;    Windows.h also exists should change their sources to use #include <MacWindows.h>
  23. ;
  24.  
  25.     IF &TYPE('__WINDOWS__') = 'UNDEFINED' THEN
  26. __WINDOWS__ SET 1
  27.  
  28.     IF &TYPE('__CONDITIONALMACROS__') = 'UNDEFINED' THEN
  29.     include 'ConditionalMacros.a'
  30.     ENDIF
  31.  
  32.     IF TARGET_OS_MAC THEN
  33.     IF &TYPE('__MACWINDOWS__') = 'UNDEFINED' THEN
  34.     include 'MacWindows.a'
  35.     ENDIF
  36.     ELSE
  37. ;    If you get here, your development environment is messed up.
  38. ;    This file is for MacOS development only.
  39. ;
  40.  
  41.     ENDIF    ; TARGET_OS_MAC
  42.     ENDIF ; __WINDOWS__ 
  43.  
  44.